找传奇、传世资源到传世资源站!

基于JavaWeb的英语四六级报名系统

8.5玩家评分(1人评分)
下载后可评
介绍 评论 失效链接反馈

【例子介绍】基于JavaWeb的英语四六级报名系统

【相关图片】

from clipboard

【源码结构】

.
├── CET
│   ├── WebContent
│   │   ├── META-INF
│   │   │   └── MANIFEST.MF
│   │   ├── WEB-INF
│   │   │   ├── lib
│   │   │   │   ├── c3p0-0.9.1.2.jar
│   │   │   │   ├── commons-beanutils-1.8.3.jar
│   │   │   │   ├── commons-dbutils-1.6.jar
│   │   │   │   ├── commons-fileupload-1.2.1.jar
│   │   │   │   ├── jstl-1.2.jar
│   │   │   │   └── mysql-connector-java-5.1.12-bin.jar
│   │   │   └── web.xml
│   │   ├── app
│   │   │   ├── enlist
│   │   │   │   ├── enlist.jsp
│   │   │   │   └── enlistSuccess.jsp
│   │   │   ├── error
│   │   │   │   ├── error.jsp
│   │   │   │   └── pwdError.jsp
│   │   │   ├── index.jsp
│   │   │   ├── login.jsp
│   │   │   ├── public
│   │   │   │   ├── bottom.jsp
│   │   │   │   ├── left.jsp
│   │   │   │   ├── right.jsp
│   │   │   │   └── top.jsp
│   │   │   ├── query
│   │   │   │   ├── queryInfo.jsp
│   │   │   │   ├── queryScore.jsp
│   │   │   │   └── queryScore_list.jsp
│   │   │   ├── register
│   │   │   │   ├── register_add.jsp
│   │   │   │   └── register_update.jsp
│   │   │   ├── style
│   │   │   │   ├── css
│   │   │   │   │   ├── common_style_blue.css
│   │   │   │   │   ├── img
│   │   │   │   │   │   ├── QueryArea_bg.png
│   │   │   │   │   │   ├── TableTail_bg.png
│   │   │   │   │   │   ├── TableTitle_bg.png
│   │   │   │   │   │   ├── button_bg.png
│   │   │   │   │   │   ├── inputPageHeadBg.gif
│   │   │   │   │   │   ├── login.PNG
│   │   │   │   │   │   ├── login.jpg
│   │   │   │   │   │   ├── pageNum_bg.png
│   │   │   │   │   │   ├── title_bg.gif
│   │   │   │   │   │   ├── title_bg_end.gif
│   │   │   │   │   │   └── title_bg_head.gif
│   │   │   │   │   └── index_1.css
│   │   │   │   ├── images
│   │   │   │   │   ├── Header_back.gif
│   │   │   │   │   ├── Header_forward.gif
│   │   │   │   │   ├── Header_refresh.gif
│   │   │   │   │   ├── baizhuoxia.jpg
│   │   │   │   │   ├── func20001.gif
│   │   │   │   │   ├── help2.gif
│   │   │   │   │   ├── img
│   │   │   │   │   │   ├── menu_arrow_single.gif
│   │   │   │   │   │   ├── menu_btn_bg.gif
│   │   │   │   │   │   ├── top_head1_bg.gif
│   │   │   │   │   │   └── top_head2_bg.gif
│   │   │   │   │   ├── info.gif
│   │   │   │   │   ├── item_point.gif
│   │   │   │   │   ├── logout.gif
│   │   │   │   │   ├── title_arrow.gif
│   │   │   │   │   ├── user.gif
│   │   │   │   │   └── version.gif
│   │   │   │   └── js
│   │   │   │       ├── jquery.js
│   │   │   │       └── page_common.js
│   │   │   └── welcome.jsp
│   │   ├── error
│   │   │   └── error.jsp
│   │   ├── photo
│   │   │   └── windows.jpg
│   │   └── sys
│   │       ├── count
│   │       │   ├── countList.jsp
│   │       │   ├── countList_inputScore.jsp
│   │       │   └── countList_print.jsp
│   │       ├── enroll
│   │       │   ├── studentInfo_list.jsp
│   │       │   └── studentInfo_update.jsp
│   │       ├── index.jsp
│   │       ├── public
│   │       │   ├── bottom.jsp
│   │       │   ├── left.jsp
│   │       │   ├── right.jsp
│   │       │   └── top.jsp
│   │       ├── query
│   │       │   ├── queryInfo.jsp
│   │       │   ├── queryScore.jsp
│   │       │   └── queryScore_list.jsp
│   │       ├── style
│   │       │   ├── css
│   │       │   │   ├── common_style_blue.css
│   │       │   │   ├── img
│   │       │   │   │   ├── QueryArea_bg.png
│   │       │   │   │   ├── TableTail_bg.png
│   │       │   │   │   ├── TableTitle_bg.png
│   │       │   │   │   ├── button_bg.png
│   │       │   │   │   ├── inputPageHeadBg.gif
│   │       │   │   │   ├── pageNum_bg.png
│   │       │   │   │   ├── title_bg.gif
│   │       │   │   │   ├── title_bg_end.gif
│   │       │   │   │   └── title_bg_head.gif
│   │       │   │   └── index_1.css
│   │       │   ├── images
│   │       │   │   ├── Header_back.gif
│   │       │   │   ├── Header_forward.gif
│   │       │   │   ├── Header_refresh.gif
│   │       │   │   ├── baizhuoxia.jpg
│   │       │   │   ├── func20001.gif
│   │       │   │   ├── help2.gif
│   │       │   │   ├── img
│   │       │   │   │   ├── menu_arrow_single.gif
│   │       │   │   │   ├── menu_btn_bg.gif
│   │       │   │   │   ├── top_head1_bg.gif
│   │       │   │   │   └── top_head2_bg.gif
│   │       │   │   ├── info.gif
│   │       │   │   ├── item_point.gif
│   │       │   │   ├── logout.gif
│   │       │   │   ├── title_arrow.gif
│   │       │   │   ├── user.gif
│   │       │   │   └── version.gif
│   │       │   └── js
│   │       │       ├── jquery.js
│   │       │       └── page_common.js
│   │       └── type
│   │           ├── testType_add.jsp
│   │           └── testType_list.jsp
│   ├── build
│   │   └── classes
│   │       ├── c3p0-config.xml
│   │       ├── edu
│   │       │   └── fosu
│   │       │       ├── dao
│   │       │       │   ├── ICardDao.class
│   │       │       │   ├── IManageDao.class
│   │       │       │   ├── IScoreDao.class
│   │       │       │   ├── IStudentInfoDao.class
│   │       │       │   ├── ITestTypeDao.class
│   │       │       │   └── impl
│   │       │       │       ├── CardDao.class
│   │       │       │       ├── LoginDao.class
│   │       │       │       ├── ManageDao.class
│   │       │       │       ├── ScoreDao.class
│   │       │       │       ├── StudentInfoDao.class
│   │       │       │       └── TestTypeDao.class
│   │       │       ├── entity
│   │       │       │   ├── Card.class
│   │       │       │   ├── Manage.class
│   │       │       │   ├── Score.class
│   │       │       │   ├── StudentInfo.class
│   │       │       │   └── TestType.class
│   │       │       ├── factory
│   │       │       │   └── BeanFactory.class
│   │       │       ├── service
│   │       │       │   ├── ICardService.class
│   │       │       │   ├── IManageService.class
│   │       │       │   ├── IScoreService.class
│   │       │       │   ├── IStudentInfoService.class
│   │       │       │   ├── ITestTypeService.class
│   │       │       │   └── impl
│   │       │       │       ├── CardService.class
│   │       │       │       ├── ManageService.class
│   │       │       │       ├── ScoreService.class
│   │       │       │       ├── StudentInfoService.class
│   │       │       │       └── TestTypeService.class
│   │       │       ├── servlet
│   │       │       │   ├── CardServlet.class
│   │       │       │   ├── IndexServlet.class
│   │       │       │   ├── LoginServlet.class
│   │       │       │   ├── ScoreServlet.class
│   │       │       │   ├── StudentInfoServlet.class
│   │       │       │   └── TestTypeServlet.class
│   │       │       └── utils
│   │       │           ├── JdbcUtils.class
│   │       │           └── PageBean.class
│   │       └── instance.properties
│   ├── database
│   │   └── cet_db.sql
│   └── src
│       ├── c3p0-config.xml
│       ├── edu
│       │   └── fosu
│       │       ├── dao
│       │       │   ├── ICardDao.java
│       │       │   ├── IManageDao.java
│       │       │   ├── IScoreDao.java
│       │       │   ├── IStudentInfoDao.java
│       │       │   ├── ITestTypeDao.java
│       │       │   └── impl
│       │       │       ├── CardDao.java
│       │       │       ├── LoginDao.java
│       │       │       ├── ManageDao.java
│       │       │       ├── ScoreDao.java
│       │       │       ├── StudentInfoDao.java
│       │       │       └── TestTypeDao.java
│       │       ├── entity
│       │       │   ├── Card.java
│       │       │   ├── Manage.java
│       │       │   ├── Score.java
│       │       │   ├── StudentInfo.java
│       │       │   └── TestType.java
│       │       ├── factory
│       │       │   └── BeanFactory.java
│       │       ├── service
│       │       │   ├── ICardService.java
│       │       │   ├── IManageService.java
│       │       │   ├── IScoreService.java
│       │       │   ├── IStudentInfoService.java
│       │       │   ├── ITestTypeService.java
│       │       │   └── impl
│       │       │       ├── CardService.java
│       │       │       ├── ManageService.java
│       │       │       ├── ScoreService.java
│       │       │       ├── StudentInfoService.java
│       │       │       └── TestTypeService.java
│       │       ├── servlet
│       │       │   ├── CardServlet.java
│       │       │   ├── IndexServlet.java
│       │       │   ├── LoginServlet.java
│       │       │   ├── ScoreServlet.java
│       │       │   ├── StudentInfoServlet.java
│       │       │   └── TestTypeServlet.java
│       │       └── utils
│       │           ├── JdbcUtils.java
│       │           └── PageBean.java
│       └── instance.properties
└── 5t6t网_基于JavaWeb的英语四六级报名系统.rar

55 directories, 177 files

评论

发表评论必须先登陆, 您可以 登陆 或者 注册新账号 !


在线咨询: 问题反馈
客服QQ:174666394

有问题请留言,看到后及时答复